/*==================================================
                GLOBAL SETTINGS
==================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f5f5f5;
    color: #333;
    overflow-x: hidden;
}


/*==================================================
                    HEADER
==================================================*/

header {
    width: 100%;
    min-height: 120px;

    background: #222;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 5%;
}

#img_header {
    width: 90px;
    height: 90px;

    border-radius: 50%;
    object-fit: cover;

    flex-shrink: 0;
}

header #title {
    flex: 1;

    color: white;

    font-size: 2rem;
    font-weight: bold;

    text-align: center;

    margin: 0 20px;
}


/*==================================================
                    NAVBAR
==================================================*/

nav {
    width: 100%;

    background: #c62828;

    position: sticky;
    top: 0;

    z-index: 1000;
}

nav > ul {
    display: flex;

    justify-content: center;
    align-items: center;

    list-style: none;

    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;

    padding: 18px 30px;

    color: white;

    font-size: 18px;

    text-decoration: none;

    white-space: nowrap;

    transition: 0.3s;
}

nav ul li a:hover {
    background: white;
    color: #c62828;
}


/*==================================================
                    DROPDOWN
==================================================*/

nav ul li > ul {
    position: absolute;

    top: 100%;
    left: 0;

    width: 240px;

    display: none;
    flex-direction: column;

    background: #c62828;

    list-style: none;

    padding: 0;
    margin: 0;

    z-index: 9999;
}

nav ul li:hover > ul {
    display: flex;
}

nav ul li ul li {
    width: 100%;
}

nav ul li ul li a {
    width: 100%;

    padding: 15px;

    font-size: 16px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}


/*==================================================
                LANGUAGE BUTTON
==================================================*/

#languageBtn {
    margin: 8px 20px;

    padding: 10px 18px;

    background: rgba(255, 255, 255, 0.12);

    color: white;

    border: 1px solid rgba(255, 255, 255, 0.7);

    border-radius: 25px;

    font-size: 16px;
    font-weight: bold;

    cursor: pointer;

    white-space: nowrap;

    transition: 0.3s;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

#languageBtn:hover {
    background: white;

    color: #c62828;

    transform: translateY(-2px);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

#languageBtn:active {
    transform: scale(0.95);
}


/*==================================================
                    FOOTER
==================================================*/

footer {
    width: 100%;

    background: #222;

    color: white;

    text-align: center;

    padding: 25px;

    margin-top: 50px;
}

footer h1 {
    font-size: 1.5rem;
    font-weight: normal;
}


/*==================================================
                    HOME PAGE
==================================================*/

.body_home {
    width: 90%;

    margin: 40px auto;
}


/*========== SLIDER ==========*/

#img_1 {
    width: 100%;
    height: 550px;

    object-fit: cover;

    border-radius: 15px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

#h2_1 {
    margin-top: 25px;

    text-align: center;

    font-size: 35px;

    color: #c62828;
}

#h1_1 {
    margin-top: 10px;

    text-align: center;

    color: #666;
}


/*========== SLIDER BUTTONS ==========*/

.prev,
.next {
    width: 60px;
    height: 60px;

    margin: 25px 10px;

    border: none;

    border-radius: 50%;

    background: #c62828;

    color: white;

    font-size: 28px;

    cursor: pointer;

    transition: 0.3s;
}

.prev:hover,
.next:hover {
    background: #222;

    transform: scale(1.1);
}


/*========== HOME CARDS ==========*/

.body_home table {
    width: 100%;

    border-spacing: 30px;

    margin-top: 50px;
}

.body_home article {
    background: white;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

    transition: 0.3s;
}

.body_home article:hover {
    transform: translateY(-30px);
}

.body_home article img {
    width: 100%;
    height: 250px;

    object-fit: cover;
}

.body_home article p {
    padding: 20px;

    font-size: 18px;

    line-height: 1.8;

    text-align: justify;
}


/*==================================================
                    MENU PAGE
==================================================*/

.body_menu {
    width: 90%;

    margin: 50px auto;
}

.body_menu table {
    width: 100%;

    border-spacing: 30px;
}

.body_menu article {
    margin-top: 30px;

    background: white;

    border-radius: 18px;

    overflow: hidden;

    text-align: center;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

    transition: 0.3s;
}

.body_menu article:hover {
    transform: translateY(-30px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.body_menu article img {
    width: 100%;
    height: 240px;

    object-fit: cover;
}

#name_title,
#rating_title,
#price_title {
    display: inline-block;

    margin-top: 15px;

    color: #c62828;

    font-size: 22px;
}

#name,
#rating,
#price {
    display: inline-block;

    margin-left: 8px;

    color: #333;

    font-size: 22px;
}

#description {
    width: 90%;

    margin: 20px auto;

    color: #555;

    font-size: 17px;

    line-height: 1.7;
}

#order_now {
    margin: 20px 0 30px;

    padding: 14px 35px;

    background: #c62828;

    color: white;

    border: none;

    border-radius: 8px;

    font-size: 18px;

    cursor: pointer;

    transition: 0.3s;
}

#order_now:hover {
    background: #222;

    transform: scale(1.05);
}


/*==================================================
                    CHEFS PAGE
==================================================*/

.body_chefs {
    width: 90%;

    margin: 50px auto;
}

.body_chefs table {
    width: 100%;

    border-spacing: 30px;
}

.body_chefs article {
    margin-top: 30px;

    background: white;

    border-radius: 18px;

    overflow: hidden;

    text-align: center;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

    transition: 0.3s;
}

.body_chefs article:hover {
    transform: translateY(-30px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.body_chefs article img {
    width: 100%;
    height: 320px;

    object-fit: cover;
}

#Age_title,
#experience_title {
    display: inline-block;

    margin-top: 12px;

    color: #c62828;

    font-size: 21px;
}

#Age,
#experience {
    display: inline-block;

    margin-left: 8px;

    color: #444;

    font-size: 21px;
}

.body_chefs #description {
    width: 90%;

    margin: 20px auto;

    color: #555;

    font-size: 17px;

    line-height: 1.8;
}


/*==================================================
                    GALLERY PAGE
==================================================*/

.body_gallery {
    width: 90%;

    margin: 50px auto;
}

.body_gallery table {
    width: 100%;

    border-spacing: 20px;
}

.body_gallery article {
    overflow: hidden;

    background: white;

    border-radius: 15px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.body_gallery article img {
    width: 100%;
    height: 250px;

    object-fit: cover;

    cursor: pointer;

    transition: 0.5s;
}

.body_gallery article img:hover {
    transform: scale(1.12);
}


/*==================================================
                    CONTACT PAGE
==================================================*/

.body_contact {
    width: 90%;

    margin: 50px auto;

    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    gap: 40px;
}

#table,
#table_2 {
    width: 48%;

    padding: 35px;

    background: white;

    border-radius: 20px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

#title h1,
#title_2 h1 {
    margin-bottom: 10px;

    text-align: center;

    color: #c62828;
}

#table h2,
#table_2 h2 {
    margin-top: 20px;

    color: #333;
}

#table input,
#table_2 input {
    width: 100%;

    padding: 15px;

    margin-top: 10px;

    border: 1px solid #ccc;

    border-radius: 8px;

    font-size: 16px;

    transition: 0.3s;
}

#table input:focus,
#table_2 input:focus {
    outline: none;

    border-color: #c62828;

    box-shadow: 0 0 10px rgba(198, 40, 40, 0.25);
}

#text_message {
    height: 140px;
}

#div_opening {
    margin-top: 20px;

    color: #444;

    font-size: 18px;

    line-height: 2;
}

#send_message {
    width: 100%;

    margin-top: 25px;

    padding: 15px;

    background: #c62828;

    color: white;

    border: none;

    border-radius: 10px;

    font-size: 18px;

    cursor: pointer;

    transition: 0.3s;
}

#send_message:hover {
    background: #222;

    transform: translateY(-3px);
}


/*==================================================
                CRISPY CHICKEN PAGE
==================================================*/

.body_crispy_Chicken {
    width: 80%;

    margin: 50px auto;

    padding: 40px;

    background: white;

    border-radius: 20px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.body_crispy_Chicken #title {
    margin-bottom: 30px;

    text-align: center;

    color: #c62828;

    font-size: 40px;
}

.body_crispy_Chicken img {
    width: 100%;
    height: 500px;

    margin-bottom: 30px;

    object-fit: cover;

    border-radius: 20px;
}

.body_crispy_Chicken #About,
.body_crispy_Chicken #ingredients,
.body_crispy_Chicken #Preparation_Steps,
.body_crispy_Chicken #Recipe_Information {
    margin-top: 35px;
    margin-bottom: 20px;

    color: #c62828;
}

.body_crispy_Chicken #p_about {
    color: #555;

    font-size: 18px;

    line-height: 1.9;
}

.body_crispy_Chicken ul,
.body_crispy_Chicken ol {
    margin-left: 35px;
}

.body_crispy_Chicken li {
    margin-bottom: 12px;
}

.body_crispy_Chicken #p_ingredients,
.body_crispy_Chicken #p_Preparation_Steps {
    color: #444;

    font-size: 17px;
}

.body_crispy_Chicken #p_Recipe_Information,
.body_crispy_Chicken #p_2_Recipe_Information {
    margin-top: 10px;

    color: #444;

    font-size: 18px;
}


/*==================================================
                RESERVATION PAGE
==================================================*/

.reservation {
    width: 500px;

    margin: 50px auto;

    padding: 30px;

    background: white;

    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);

    text-align: center;
}

.reservation h1 {
    margin-bottom: 10px;

    font-size: 35px;
}

.reservation p {
    margin-bottom: 25px;

    font-size: 18px;
}

.reservation form {
    display: flex;

    flex-direction: column;

    text-align: left;
}

.reservation label {
    margin-bottom: 7px;

    font-size: 17px;

    font-weight: bold;
}

.reservation input {
    padding: 12px;

    margin-bottom: 18px;

    border: 1px solid #ccc;

    border-radius: 8px;

    font-size: 16px;
}

.reservation input:focus {
    outline: none;

    border: 2px solid #d4af37;
}

.reservation button {
    padding: 13px;

    background: #d4af37;

    color: white;

    border: none;

    border-radius: 8px;

    font-size: 18px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

.reservation button:hover {
    background: #b8941f;
}


/*==================================================
                    TABLET
==================================================*/

@media (max-width: 992px) {

    /* HEADER */

    header {
        padding: 15px 3%;
    }

    #img_header {
        width: 80px;
        height: 80px;
    }

    header #title {
        font-size: 1.7rem;
    }


    /* NAVBAR */

    nav ul li a {
        padding: 14px 12px;

        font-size: 14px;
    }

    #languageBtn {
        margin: 5px;

        padding: 7px 10px;

        font-size: 12px;
    }


    /* CONTENT WIDTH */

    .body_home,
    .body_menu,
    .body_chefs,
    .body_gallery {
        width: 94%;
    }


    /* HOME */

    #img_1 {
        height: 400px;
    }

    #h2_1 {
        font-size: 28px;
    }


    /* TABLE CARDS */

    .body_home table,
    .body_home tbody,
    .body_home tr,
    .body_home td,

    .body_menu table,
    .body_menu tbody,
    .body_menu tr,
    .body_menu td,

    .body_chefs table,
    .body_chefs tbody,
    .body_chefs tr,
    .body_chefs td,

    .body_gallery table,
    .body_gallery tbody,
    .body_gallery tr,
    .body_gallery td {
        display: block;

        width: 100%;
    }

    .body_home td,
    .body_menu td,
    .body_chefs td,
    .body_gallery td {
        margin-bottom: 35px;
    }


    /* CONTACT */

    .body_contact {
        flex-direction: column;
    }

    #table,
    #table_2 {
        width: 100%;
    }


    /* RECIPE */

    .body_crispy_Chicken {
        width: 90%;
    }
}


/*==================================================
                    MOBILE
==================================================*/

@media (max-width: 768px) {

    /*==================================================
                        HEADER
    ==================================================*/

    header {
        min-height: 85px;

        padding: 10px 12px;

        flex-direction: row;

        gap: 8px;
    }

    #img_header {
        width: 55px;
        height: 55px;
    }

    header #title {
        margin: 0;

        font-size: 18px;

        line-height: 1.4;
    }


    /*==================================================
                        NAVBAR
    ==================================================*/

    nav {
        overflow-x: auto;
        overflow-y: visible;

        white-space: nowrap;

        scrollbar-width: none;
    }

    nav::-webkit-scrollbar {
        display: none;
    }

    nav > ul {
        width: max-content;

        min-width: 100%;

        display: flex;

        flex-direction: row;

        flex-wrap: nowrap;

        justify-content: center;
        align-items: center;
    }

    nav > ul > li {
        width: auto;

        flex: 0 0 auto;
    }

    nav > ul > li > a {
        width: auto;

        padding: 11px 10px;

        font-size: 12px;

        text-align: center;
    }


    /* LANGUAGE BUTTON */

    #languageBtn {
        margin: 4px 5px;

        padding: 6px 9px;

        font-size: 11px;
    }


    /*==================================================
                    DROPDOWN
    ==================================================*/

    nav ul li > ul {
        top: 100%;
        left: 0;

        width: 190px;

        display: none;

        flex-direction: column;

        background: #c62828;

        padding: 0;
        margin: 0;

        z-index: 9999;
    }

    nav ul li:hover > ul {
        display: flex;
    }

    nav ul li ul li {
        width: 100%;

        flex: none;
    }

    nav ul li ul li a {
        width: 100%;

        padding: 11px 12px;

        font-size: 12px;

        text-align: left;
    }


    /*==================================================
                        HOME
    ==================================================*/

    .body_home {
        width: 94%;

        margin: 25px auto;
    }

    #img_1 {
        height: 220px;

        border-radius: 12px;
    }

    #h2_1 {
        margin-top: 18px;

        font-size: 20px;

        line-height: 1.5;
    }

    #h1_1 {
        font-size: 15px;
    }

    .prev,
    .next {
        width: 42px;
        height: 42px;

        margin: 15px 5px;

        font-size: 20px;
    }

    .body_home article img {
        height: 220px;
    }

    .body_home article p {
        padding: 18px;

        font-size: 16px;

        line-height: 1.8;
    }


    /*==================================================
                        MENU
    ==================================================*/

    .body_menu {
        width: 94%;

        margin: 30px auto;
    }

    .body_menu article {
        margin-top: 20px;
    }

    .body_menu article img {
        height: 210px;
    }

    #name_title,
    #rating_title,
    #price_title,
    #name,
    #rating,
    #price {
        font-size: 17px;
    }

    #name,
    #rating,
    #price {
        margin-left: 5px;
    }

    #description {
        font-size: 15px;

        line-height: 1.7;
    }

    #order_now {
        width: 90%;

        padding: 12px;

        font-size: 16px;
    }


    /*==================================================
                        CHEFS
    ==================================================*/

    .body_chefs {
        width: 94%;

        margin: 30px auto;
    }

    .body_chefs article img {
        height: 240px;
    }

    #Age_title,
    #experience_title,
    #Age,
    #experience {
        font-size: 17px;
    }

    .body_chefs #description {
        font-size: 15px;

        line-height: 1.7;
    }


    /*==================================================
                        GALLERY
    ==================================================*/

    .body_gallery {
        width: 94%;

        margin: 30px auto;
    }

    .body_gallery article img {
        height: 210px;
    }


    /*==================================================
                        CONTACT
    ==================================================*/

    .body_contact {
        width: 94%;

        margin: 30px auto;

        display: block;
    }

    #table,
    #table_2 {
        width: 100%;

        padding: 22px;

        margin-bottom: 25px;

        border-radius: 15px;
    }

    #title h1,
    #title_2 h1 {
        font-size: 23px;

        line-height: 1.4;
    }

    #table h2,
    #table_2 h2 {
        font-size: 18px;
    }

    #table input,
    #table_2 input {
        width: 100%;

        padding: 13px;

        font-size: 15px;
    }

    #text_message {
        height: 120px;
    }

    #send_message {
        padding: 13px;

        font-size: 16px;
    }


    /*==================================================
                    RECIPE PAGE
    ==================================================*/

    .body_crispy_Chicken {
        width: 94%;

        margin: 30px auto;

        padding: 20px;

        border-radius: 15px;
    }

    .body_crispy_Chicken #title {
        margin-bottom: 20px;

        font-size: 28px;

        line-height: 1.4;
    }

    .body_crispy_Chicken img {
        height: 230px;

        border-radius: 15px;
    }

    .body_crispy_Chicken #About,
    .body_crispy_Chicken #ingredients,
    .body_crispy_Chicken #Preparation_Steps,
    .body_crispy_Chicken #Recipe_Information {
        font-size: 21px;

        line-height: 1.4;
    }

    .body_crispy_Chicken #p_about,
    .body_crispy_Chicken #p_ingredients,
    .body_crispy_Chicken #p_Preparation_Steps,
    .body_crispy_Chicken #p_Recipe_Information,
    .body_crispy_Chicken #p_2_Recipe_Information {
        font-size: 15px;

        line-height: 1.8;
    }

    .body_crispy_Chicken ul,
    .body_crispy_Chicken ol {
        margin-left: 20px;
        margin-right: 20px;

        padding-left: 15px;
    }

    .body_crispy_Chicken li {
        margin-bottom: 10px;

        line-height: 1.7;
    }


    /*==================================================
                    RESERVATION
    ==================================================*/

    .reservation {
        width: 90%;

        max-width: 500px;

        margin: 30px auto;

        padding: 22px;
    }

    .reservation h1 {
        font-size: 27px;

        line-height: 1.4;
    }

    .reservation p {
        font-size: 15px;

        line-height: 1.8;
    }

    .reservation label {
        font-size: 16px;
    }

    .reservation input {
        width: 100%;

        padding: 12px;

        font-size: 15px;
    }

    .reservation button {
        width: 100%;

        padding: 13px;

        font-size: 17px;
    }


    /*==================================================
                        FOOTER
    ==================================================*/

    footer {
        padding: 20px 15px;

        margin-top: 40px;
    }

    footer h1 {
        font-size: 20px;

        line-height: 1.5;
    }
}


/*==================================================
                VERY SMALL PHONES
==================================================*/

@media (max-width: 480px) {

    /* HEADER */

    header {
        padding: 9px 8px;

        gap: 6px;
    }

    #img_header {
        width: 48px;
        height: 48px;
    }

    header #title {
        margin: 0 5px;

        font-size: 15px;

        line-height: 1.3;
    }


    /* NAVBAR */

    nav > ul {
        justify-content: flex-start;

        min-width: max-content;
    }

    nav > ul > li > a {
        padding: 9px 8px;

        font-size: 10px;
    }

    #languageBtn {
        margin: 3px 4px;

        padding: 5px 7px;

        font-size: 9px;
    }


    /* DROPDOWN */

    nav ul li > ul {
        width: 175px;
    }

    nav ul li ul li a {
        padding: 10px;

        font-size: 11px;
    }


    /* HOME */

    .body_home {
        width: 95%;
    }

    #img_1 {
        height: 190px;
    }

    #h2_1 {
        font-size: 18px;
    }

    #h1_1 {
        font-size: 14px;
    }

    .prev,
    .next {
        width: 38px;
        height: 38px;

        margin: 12px 4px;

        font-size: 18px;
    }


    /* MENU */

    .body_menu {
        width: 95%;
    }

    .body_menu article img {
        height: 190px;
    }

    #name_title,
    #rating_title,
    #price_title,
    #name,
    #rating,
    #price {
        font-size: 15px;
    }

    #description {
        font-size: 14px;
    }


    /* CHEFS */

    .body_chefs {
        width: 95%;
    }

    .body_chefs article img {
        height: 200px;
    }

    #Age_title,
    #experience_title,
    #Age,
    #experience {
        font-size: 15px;
    }

    .body_chefs #description {
        font-size: 14px;
    }


    /* GALLERY */

    .body_gallery {
        width: 90%;
    }

    .body_gallery article img {
        width: 100%;
        height: auto;
    }


    /* CONTACT */

    .body_contact {
        width: 95%;
    }

    #table,
    #table_2 {
        padding: 18px;
    }

    #title h1,
    #title_2 h1 {
        font-size: 21px;
    }

    #table h2,
    #table_2 h2 {
        font-size: 17px;
    }


    /* RECIPE */

    .body_crispy_Chicken {
        width: 95%;

        padding: 15px;
    }

    .body_crispy_Chicken #title {
        font-size: 24px;
    }

    .body_crispy_Chicken img {
        height: 190px;
    }

    .body_crispy_Chicken #About,
    .body_crispy_Chicken #ingredients,
    .body_crispy_Chicken #Preparation_Steps,
    .body_crispy_Chicken #Recipe_Information {
        font-size: 19px;
    }


    /* RESERVATION */

    .reservation {
        width: 94%;

        padding: 18px;
    }

    .reservation h1 {
        font-size: 24px;
    }

    .reservation p {
        font-size: 14px;
    }


    /* FOOTER */

    footer {
        padding: 18px 10px;
    }

    footer h1 {
        font-size: 17px;
    }
}
